Dashboard Temp Share Shortlinks Frames API

HTMLify

style.css
Views: 17 | Author: huxn-webdev
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  min-height: 100vh;
  background-color: blanchedalmond;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 70px;
}

.container {
  background: #fff;
  padding: 30px 40px;
  border-radius: 10px;
  width: 50%;
}

header h2 {
  font-size: 1.4rem;
}

.para {
  margin-top: 12px;
  font-size: 18px;
}

.para .content-container-2 {
  display: none;
}

.btn {
  background-color: black;
  color: #fff;
  padding: 10px 45px;
  font-size: 1.1rem;
  border-radius: 5px;
  outline: none;
  border: none;
  cursor: pointer;
  margin-top: 15px;
}

/* JavaScript */
.content-container-2.toggle {
  display: block;
}